Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / NotifyCollectionBase<T> Class / Item Property


In This Topic
    Item Property (NotifyCollectionBase<T>)
    In This Topic
    Gets or sets the item at the specified index.
    Syntax
    'Declaration
     
    Public Overridable Default Property Item( _
       ByVal index As Integer _
    ) As T
    'Usage
     
    Dim instance As NotifyCollectionBase(Of T)
    Dim index As Integer
    Dim value As T
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    public virtual T this[ 
       int index
    ]; {get; set;}

    Parameters

    index

    Property Value

    The item index.
    See Also